Dynamic HTML - перевод на Английский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:     

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Dynamic HTML - перевод на Английский

UMBRELLA TERM FOR A COLLECTION OF TECHNOLOGIES (E.G., HTML, JAVASCRIPT, CSS AND DOM) USED TOGETHER TO CREATE INTERACTIVE AND ANIMATED WEB SITES
DHTML; Dynamic html; DOM Scripting; Dhtml

Dynamic HTML         
HTML dinamico, lingua di ipertesto dinamica, complesso di opportunità nei documenti HTML che consente una programmazione flessibile e interazione immediata con l"utente, DHTML
HyperText Markup Language         
  • Logo of HTML5
  • HTML element content categories
  • [[Tim Berners-Lee]] in April 2009
FAMILY OF MARKUP LANGUAGES FOR DISPLAYING INFORMATION VIEWABLE IN A WEB BROWSER
Html; HTML 4.01; .html; .htm; HTML code; Hypertext Markup Language (HTML); Hypertext markup language; HMTL; HLMT; HTML+; HTML syntax; Hyper Text Markup Language; A href; Html 4.01; ISO/IEC 15445; Myspace code; Dynamic Hypertext Markup Language; HTM file; Html code; HTML4; Html language; Hypertext Markup Language; .HTM; HyperText Markup Language; Hyper text markup language; Html coding; Basic HTML; Text/html; HTML File Format; HTML 3; HTML 4; HTML3; Body Section; HTML 2; HTML2; HTML 3.2; HTML file; HTML strict; Html comment; ISO/IEC HTML; Img src; HTML 4.0; Hyper text Markup Language; HTML Living Standard; HTML (programming language); HTML (markup language)
HTML (Lingua utilizzata nella scrittura di testi e siti nell"Internet)
dynamic analysis         
METHOD OF ANALYSING THE IMPACT OF FISCAL POLICY CHANGES BY FORECASTING THE EFFECTS OF ECONOMIC AGENTS' REACTIONS TO INCENTIVES CREATED BY POLICY
Dynamic analysis
analisi dinamica (analisi di variazioni e tendenze nuove)

Определение

Dynamic HTML
<language, World-Wide Web> (DHTML) The addition of JavaScript to HTML to allow web pages to change and interact with the user without having to communicate with the server. JavaScript allows the behaviour of the page to be controlled by code that is downloaded with the HTML. It does this by manipulating the Document Object Model (DOM). The term DHTML is often also taken to include the use of "style" information to give finer control of HTML layout. The style information can be supplied as Cascading Style Sheets (CSS) or as "style" attributes (which can be manipulated by JavaScript). Layers are often also used with DHTML. Both the JavaScript and style data can be included in the HTML file or in a separate file referred to from the HTML. Some web browsers allow other languages (e.g. VBScript or Perl) to be used instead of JavaScript but this is less common. DHTML can be viewed in Internet Explorer 4+, Firefox and Netscape Communicator 4+ but, as usual, Microsoft disagree on how DHTML should be implemented. The {Document Object Model} Group of the World Wide Web Consortium is developing standards for DHTML. http://w3c.org/DOM/. (2005-10-17)

Википедия

Dynamic HTML

Dynamic HTML, or DHTML, is a term which was used by some browser vendors to describe the combination of HTML, style sheets and client-side scripts (JavaScript, VBScript, or any other supported scripts) that enabled the creation of interactive and animated documents. The application of DHTML was introduced by Microsoft with the release of Internet Explorer 4 in 1997.

DHTML allows scripting languages to change variables in a web page's definition language, which in turn affects the look and function of otherwise "static" HTML page content after the page has been fully loaded and during the viewing process. Thus the dynamic characteristic of DHTML is the way it functions while a page is viewed, not in its ability to generate a unique page with each page load.

By contrast, a dynamic web page is a broader concept, covering any web page generated differently for each user, load occurrence, or specific variable values. This includes pages created by client-side scripting and ones created by server-side scripting (such as PHP, Python, JSP or ASP.NET) where the web server generates content before sending it to the client.

DHTML is the predecessor of Ajax and DHTML pages are still request/reload-based. Under the DHTML model, there may not be any interaction between the client and server after the page is loaded; all processing happens on the client side. By contrast, Ajax extends features of DHTML to allow the page to initiate network requests (or 'subrequest') to the server even after page load to perform additional actions. For example, if there are multiple tabs on a page, the pure DHTML approach would load the contents of all tabs and then dynamically display only the one that is active, while AJAX could load each tab only when it is really needed.